This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Need to get the Attachment Icon using Notes C++ 2.4 ~Kim Renuverakoi 22.Jan.04 05:52 AM a Web browser Toolkits All ReleasesWindows XP
I have tried several approaches but still can not get it to work. I created the code like below to export the graphic from a LNGraphic object but this causes an address exception.
// This is part of the code that searches through the Rich Text Item and identifies
else if (Obj.IsType(LNRTTYPE_ATTACHMENT))
{
c2 = Cursor;
Cursor++;
ProcessAttachment(rt, Obj, c2, HtmlString);
}
// This is the code in the ProcessAttachment routine to export the Graphic
LNGraphic AttachIcon;
// RTAtt is the Attachment Rich text object
RTAtt.GetGraphic(&AttachIcon);